home *** CD-ROM | disk | FTP | other *** search
- > Does anyone know if there is a way to force Amos Pro to print to a file
- > (using Print #, of course 8^) using a forced floating-point format?
-
- You could always do it like this:
-
- A#=value
- B#=A#*100 (or more, depending on how many decimal places you want)
- A$=Str$(B#)
- B$=Left$(A$,Len(A$)-2) (for 2 dec places)
- B$=B$+"."
- C$=Right$(A$,2)
- B$=B$+C$
- Print #1,B$
- and so on
-
- Well met and godspeed,
- Giark
-
-